home *** CD-ROM | disk | FTP | other *** search
/ Aminet 16 / Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso / Aminet / util / moni / SysLog.lha / SysLog_V1.20 / Developer / include / clib / syslog_protos.h
C/C++ Source or Header  |  1996-10-27  |  719b  |  32 lines

  1. #ifndef CLIB_SYSLOG_PROTOS_H
  2. #define CLIB_SYSLOG_PROTOS_H
  3. /*
  4. **      $VER: syslog_protos.h 1.0 (19.10.95)
  5. **      SysLog Release 1.0
  6. **
  7. **      C prototypes.
  8. **
  9. **      Copyright © 1995 Petri Nordlund. All rights reserved.
  10. **
  11. **      $Id: syslog_protos.h 1.6 1995/11/01 19:13:25 petrin Exp petrin $
  12. **
  13. */
  14.  
  15. #ifndef EXEC_TYPES_H
  16. #include <exec/types.h>
  17. #endif
  18.  
  19. #ifndef LIBRARIES_SYSLOG_H
  20. #include <libraries/syslog.h>
  21. #endif
  22.  
  23. void Log(LONG pri, LONG options, UBYTE *tag, UBYTE *message, LONG *argarray);
  24.  
  25. void DeleteSysLogMessage(struct SysLogMessage *msg);
  26. void GetSysLogMsgTime(struct SysLogMessage *);
  27.  
  28. struct SysLogSpy *AddSysLogSpy(void);
  29. void RemSysLogSpy(struct SysLogSpy *spy);
  30.  
  31. #endif /* CLIB_SYSLOG_PROTOS_H */
  32.